home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / STDREG.PAK / STDREG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  72 lines

  1. // stdreg.h : main header file for the STDREG application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"       // main symbols
  18.  
  19. typedef CMap<SWORD,SWORD,CString,LPCSTR> CMapSQLTypeToSyntax;
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CStdRegSetupApp:
  23. // See stdreg.cpp for the implementation of this class
  24. //
  25.  
  26. class CStdRegSetupApp : public CWinApp
  27. {
  28. public:
  29.     CStdRegSetupApp();
  30.     ~CStdRegSetupApp();
  31.  
  32. // Attributes
  33. protected:
  34.     CMapSQLTypeToSyntax m_mapSQLTypeToSyntax;
  35. public:
  36.     CDatabase m_db;
  37.  
  38. // Overrides
  39.     // ClassWizard generate virtual function overrides
  40.     //{{AFX_VIRTUAL(CStdRegSetupApp)
  41.     public:
  42.     virtual BOOL InitInstance();
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Operations
  46. public:
  47.     void AddDataSource();
  48.     BOOL GetColumnSyntax();
  49.     void InitializeData();
  50.  
  51. // Implementation
  52. protected:
  53.     void ShowProgress(int nTablesDone);
  54.     BOOL ExecuteSQLAndReportFailure(const CString& strSQL);
  55.     BOOL DropThenAddTable(const CString& strTableName, const CString& strColumns);
  56.     void AddColumn(CString& strColumns, LPCSTR lpszColumnName, SWORD fSqlType,
  57.         LPCSTR lpszColLength = NULL);
  58.     BOOL AddCourseTable();
  59.     BOOL AddStudentTable();
  60.     BOOL AddInstructorTable();
  61.     BOOL AddSectionTable();
  62.     BOOL AddDynabindSectionTable();
  63.     BOOL AddEnrollmentTable();
  64.  
  65.     //{{AFX_MSG(CStdRegSetupApp)
  66.     //}}AFX_MSG
  67.     DECLARE_MESSAGE_MAP()
  68. };
  69.  
  70.  
  71. /////////////////////////////////////////////////////////////////////////////
  72.